home *** CD-ROM | disk | FTP | other *** search
/ Star Festival... a Return to Japan / Star Festival... a Return to Japan.iso / pc / STARFESTIVAL / 10q2.dir / 00001_sM.ls next >
Encoding:
Text File  |  1999-03-11  |  1.4 KB  |  51 lines

  1. on startMovie
  2.   global gqtcurrenttime, gqtcurrentmovie, gPcVidSprite
  3.   gPcVidSprite = 52
  4. end
  5.  
  6. on stopMovie
  7.   global gqtcurrenttime
  8.   gqtcurrenttime = 0
  9.   stopmovieqt()
  10. end
  11.  
  12. on checkCursors
  13.   global gMagCursor
  14.   set the castNum of sprite 46 to the number of member "curs1"
  15.   if rollOver(4) then
  16.     set the castNum of sprite 46 to the number of member "hotCursor"
  17.   end if
  18.   if rollOver(22) then
  19.     set the castNum of sprite 46 to the number of member "hotCursor"
  20.   end if
  21.   if rollOver(27) then
  22.     set the castNum of sprite 46 to the number of member "hotCursor"
  23.   end if
  24.   repeat with i = 10 to 13
  25.     if rollOver(i) then
  26.       set the castNum of sprite 46 to the number of member "hotCursor"
  27.     end if
  28.   end repeat
  29.   if rollOver(16) then
  30.     set the castNum of sprite 46 to the number of member "hotCursor"
  31.   end if
  32.   if rollOver(18) then
  33.     set the castNum of sprite 46 to the number of member "hotCursor"
  34.   end if
  35.   if rollOver(20) then
  36.     set the castNum of sprite 46 to the number of member "hotCursor"
  37.   end if
  38.   repeat with i = 23 to 27
  39.     if rollOver(i) then
  40.       set the castNum of sprite 46 to the number of member "hotCursor"
  41.     end if
  42.   end repeat
  43.   if rollOver(40) then
  44.     set the castNum of sprite 46 to the number of member "nonCursor"
  45.   end if
  46.   if rollOver(41) then
  47.     set the castNum of sprite 46 to the number of member "nonCursor"
  48.     cursor(-1)
  49.   end if
  50. end
  51.